home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1306 / ptreadme.txt < prev    next >
Text File  |  1996-12-15  |  12KB  |  354 lines

  1.  
  2.                 README FILE
  3.                     FOR
  4.                  POWERTERM
  5.  
  6.  
  7. Welcome to PowerTerm, the one terminal emulator you'll need.  We know that you
  8. will like it!  UniPress and Ericom are devoting all our efforts into making
  9. the program as good as it can be.
  10.  
  11.     If you have a technical question/problem PLEASE read the Frequently
  12.     Asked Tech Questions below in this README.  You may find the answer
  13.     you need right away. Even better, go to our On-Line Web FAQ, since
  14.     it is constantly revised.
  15.  
  16.  
  17. Be sure to contact UniPress to discuss commercial, technical or support
  18. issues: 
  19.  
  20.     phone:            908-287-2100
  21.     commercial email:    info@unipress.com
  22.     support email:        powerterm@unipress.com
  23.     Web:            http://www.unipress.com/powert.html
  24.                 (FAQ is included in this Web page.)
  25.  
  26. Here are a few points:
  27.  
  28.  
  29. + You can order the program from our Web page!
  30.  
  31. + The latest product information can always be found at our Web site:
  32.     http://www.unipress.com/powert.html    (Full pricing information is
  33.     included.)
  34.  
  35. + Demo copies of the program are available at the Web site. They run for one
  36.   month. After the month has expired, you can't load another demo onto the
  37.   machine. Anyway, after the month you'll surely want to buy copies.
  38.  
  39. + PowerTerm is licensed on a per-user basis.  If you want to have more than 1
  40.   person using the permanent program, you must purchase additional licenses.
  41.  
  42. + Support problems: Send e-mail inquiries to powerterm@unipress.com
  43.  
  44. + Maintenance -  Updates/Upgrades are available to  20+ user-sites  at 15% of
  45.   software price.
  46.  
  47. + Talk to us about specials for developers, dealers, universities,
  48.   government. 
  49.  
  50. + Contact us re site pricing. We're easy to deal with.
  51.  
  52. + OEMS, VARS, Software developers - we welcome discussion of special terms.
  53.  
  54. + Customization - if you want a special feature added, talk to us!
  55.  
  56. + We have both 16 and 32-bit versions of PowerTerm. The 16-bit version 
  57.   functions on all Windows systems, while the 32-bit version is designed for
  58.   Windows 95 and Windows NT. Be sure to order the type you want. If you
  59.   change your mind later, we'll upgrade you.
  60.  
  61.  
  62. + There are 2 flavors of the product: PowerTerm 320 (single copy price $79)
  63.   handles Unix-type terminals (DEC VT52-320, SCO, AIXTERM, Wyse, DG, TVI, etc.)
  64.   PowerTerm Interconnect handles all the Unix-type, as well as DEC VT420-520,
  65.   and IBM 5250 (for AS/400) and IBM 3270 (for Mainframe.)
  66.  
  67. + DOS Version: We have one. Contact us with your needs.
  68.  
  69. + Check our Web site to get on-line updates for customers. 
  70.  
  71.               FREQUENTLY ASKED TECH QUESTIONS:
  72.  
  73.  
  74.  
  75. SETTING THE BACKSPACE KEY TO SEND BACKSPACE OR DELETE -
  76.  
  77. Select the "Terminal" menu and choose "Setup".  Select the "Keyboard"
  78. tab from the "General Setup" screen. Now choose the setting you wish
  79. in the "Backspace Key Sends" section.
  80.  
  81.  
  82. PRINTING -
  83.  
  84. PowerTerm does not use Print Manager by default.  If you would like to use
  85. Print manager we have found that PowerTerm runs best if you use the Epson
  86. fx-100 print driver instead of your normal driver for your printer.
  87.  
  88. In addition you can set this to be your default printer for PowerTerm by
  89. selecting the "File" menu and selecting "Printer Setup". GOOD NEWS: If you
  90. do this, all your other Windows applications will continue to use the
  91. regular printer driver.
  92.  
  93. KEYBINDINGS -
  94.  
  95. a) Programmable Function Key Buttons (F1-F12) (also called Softkeys)
  96.  
  97.    PowerTerm's softkeys can be programmed by clicking the right mouse button
  98.    on any one of these keys.  A box is displayed whose "function
  99.    description" can be changed.  Example:  Type "Long List" in place of "F1".
  100.    Click the [OK] button; you'll now see a dialog box to enter script
  101.    commands.  Change the line to read "send ls -l<return>".  Click the [OK]
  102.    button.  Now the F1 button will display the text "Long List".  If you
  103.    logon to a UNIX machine and at  prompt press the "Long List" button
  104.    you will see a long listing of the current directory displayed.
  105.  
  106. b) Remapping the F1-F12 Function keys on the PC Keyboard -
  107.  
  108.    These keys can be mapped via a '.psl' (PowerScript Language) file.
  109.    Here  are the step by step instructions:
  110.  
  111.    1)    Choose the "script" menu and then click on "edit script".
  112.     In the highlighted box, type a file name of your choice, but
  113.     be sure to use the extension .psl, and supply a prefix.  (So you will
  114.     have a name like "mapkeys.psl".)  Press [OK].
  115.  
  116.    2)    Notepad will open.  Here are some examples that you could use.
  117.  
  118.     key f6 do {send ^p}   
  119.     key f7 do {send "-"}
  120.     key shift+f5 do {send <escape>\[31~}
  121.     key alt+f3 do {exec notepad)
  122.  
  123.     What the above examples do:
  124.  
  125.     f6 will send <CTRL>P
  126.     f7 will send the "-" character
  127.     Shifted f5 will send the sequence "<ESCAPE>\[31~"
  128.     Alt f3 will start a Notepad session
  129.  
  130.     Notes:  
  131.  
  132.     A. If you want PowerTerm to send letters or words to the screen,
  133.     be sure to enclose these in quotes.  If you are sending a command,
  134.     quotes are not needed.
  135.  
  136.     B. The Function keys MUST be in lower case, as in the examples.
  137.  
  138.  
  139. c) Remapping the KeyPad (This is the "floating Powerpad keypad" which you
  140. get from the Menu Options|Show Power Pad)
  141.  
  142.  
  143. The Floating PowerPad can be programmed either as in step (a) or step (b)
  144. above.
  145.  
  146. note: The instructions for remapping with the script language are the same as 
  147. above, except that the keypad numbers are identified by numpad[n].
  148.  
  149.     example:
  150.  
  151.     key numpad1 do {send ls^M}
  152.     key numpad2 do {exec notepad}
  153.  
  154.  
  155. QUICK CONNECTING VIA AN ICON --
  156.  
  157. AutoConnect via MODEM with an icon
  158.  
  159. First copy comm.psl (in your PowerTerm directory) to autocomm.psl, as example.
  160. (Please note that PowerTerm is installed in "C:\ptw" by default.) 
  161.  
  162.    [In the lines that follow "xxx" means your PowerTerm directory, and
  163.    "ptw.exe" means "ptw32.exe" if you are using the 32-bit version.]
  164.  
  165. 1) Run  C:\xxx\ptw.exe
  166.  
  167. 2) Select "Script" from the menu.
  168.  
  169. 3) Choose "Edit Script".
  170.  
  171. 4) Type "autocomm.psl".  
  172.  
  173. 5) Add the new 2 lines to the bottom of the script 
  174.    and the comment line near the top.
  175.  
  176.    (They are  noted.)
  177.  
  178. #
  179. # Opens a COM port.
  180. #
  181. # Parameters : $p1 - port number   (1 | 2 | 3 | 4)
  182. #              $p2 - baud rate     (300 - 115200)
  183. #              $p3 - protocol type (none | xonxoff | hardware)
  184. #           $p4 - dial number  #a new line
  185.  
  186. set comm-type com
  187. set port-number $p1
  188.  
  189. if [info exist p2] {
  190.  set baud-rate $p2
  191.  if [info exist p3] {
  192.   set protocol-type $p3
  193.  }
  194. }
  195.  
  196. session open
  197. run keys.psl
  198.  
  199. send ATDT        #a new line
  200. send $p4<return>    #a new line
  201.  
  202.  
  203.  
  204. 6) Save the file.  DO NOT USE "SAVE AS" in Windows 95 to save the file!!  
  205. SAVE AS will erroneously make the file be autocomm.psl.txt in Windows 95.
  206.  
  207. 7) For Window 3.1 users, follow STEP A only.  Win 95 and NT4.0 users
  208. follow STEP B only.
  209.  
  210.     [As before, "xxx" means the PowerTerm directory.]
  211.  
  212.     STEP A(Win 3.1): To create an icon in the PowerTerm group.    
  213.                      a) Open up the PowerTerm group under Program 
  214.                         Manager
  215.                      b) Select "File" from the Program Manager's menu
  216.                         and choose "New"
  217.                      c) Choose "Program Item" and press the [OK] button
  218.                      d) In the "Description:" field type "Dial-Computer" (you
  219.                         may want to type in the machine"s actually name
  220.                         in place of "Computer")
  221.                      e) In the "Command Line" field type: 
  222.                         "C:\xxx\ptw.exe autocomm.psl 1 9600 xonxoff 123-4567"
  223.                 where the 4 parameters are:
  224.  
  225.                 port number
  226.                 speed
  227.                 float control
  228.                 phone number
  229.  
  230.                      f) In the "Working Directory" field type:
  231.                         "C:\xxx"
  232.                      g) The "Shortcut Key" can be left blank.
  233.                      h) Press the [OK] button
  234.                      i) Double-Click on the Newly created icon to 
  235.                         establish your connection
  236.  
  237.     STEP B(Win 95 or NT4.0): To create an entry on the "Start" menu.
  238.                       a) Click on the "Start" button.
  239.                       b) Choose "Settings" and select "Taskbar".
  240.                       c) Select "Start Menu Programs" tab.
  241.                       d) Press the "Add" button.
  242.                       e) In the "Command Line" field, type:
  243.                          "C:\xxx\ptw.exe autocomm.psl 1 9600 xonxoff 123-4567"
  244.                 where the 4 parameters are:
  245.  
  246.                 port number
  247.                 speed
  248.                 float control
  249.                 phone number
  250.  
  251.                       f) Press the "Next" button.
  252.                       g) Select the "Start Menu" folder.
  253.                       h) Shortcut name should be "Ptw".
  254.                       i) Press "Finish" button.
  255.                       j) Click on the "Start" button and select "Ptw"
  256.                          to establish your connection
  257.  
  258.  
  259.  
  260. AutoConnect via TELNET with an icon
  261.  
  262. First copy telnet.psl (in your PowerTerm directory) to
  263. autotn.psl, as example. (Please note that PowerTerm is installed in "C:\ptw"
  264. by default.) 
  265.  
  266.    [In the lines that follow "xxx" means your PowerTerm directory, and
  267.    "ptw.exe" means "ptw32.exe" if you are using the 32-bit version.]
  268.  
  269. 1) Run  C:\xxx\ptw.exe
  270.  
  271. 2) Select "Script" from the menu.
  272.  
  273. 3) Choose "Edit Script".
  274.  
  275. 4) Type "autotn.psl".  
  276.  
  277. 5) Change $p1 to the name or address of the machine 
  278. that you wish to connect to.  Our example is SUN:
  279.  
  280. #
  281. # Opens a TELNET connection (Via TCP/IP WINSOCK api).
  282. #
  283. # Parameters : $p1 - host name.
  284. #
  285.  
  286. set comm-type telnet
  287. set host-name SUN
  288. session open
  289. set session-name SUN 
  290. run keys.psl
  291.  
  292. 6) Save the file.  DO NOT USE "SAVE AS" in Windows 95 to save the file!!  SAVE
  293. AS will erroneously make the file be autotn.psl.txt in Windows 95.
  294.  
  295. 7) For Window 3.1 users, follow STEP A only.  Win 95 and NT4.0 users
  296. follow STEP B only.
  297.  
  298.     [As before, "xxx" means the PowerTerm directory.]
  299.  
  300.     STEP A(Win 3.1): To create an icon in the PowerTerm group.    
  301.                      a) Open up the PowerTerm group under Program 
  302.                         Manager
  303.                      b) Select "File" from the Program Manager's menu
  304.                         and choose "New"
  305.                      c) Choose "Program Item" and press the [OK] button
  306.                      d) In the "Description:" field type "Telnet-SUN" (you
  307.                         may want to type in the machine"s actually name
  308.                         in place of "SUN")
  309.                      e) In the "Command Line" field type: 
  310.                         "C:\xxx\ptw.exe autotn.psl"
  311.                      f) In the "Working Directory" field type:
  312.                         "C:\xxx"
  313.                      g) The "Shortcut Key" can be left blank.
  314.                      h) Press the [OK] button
  315.                      i) Double-Click on the Newly created icon to 
  316.                         establish your connection
  317.  
  318.     STEP B(Win 95 or NT4.0): To create an entry on the "Start" menu.
  319.                       a) Click on the "Start" button.
  320.                       b) Choose "Settings" and select "Taskbar".
  321.                       c) Select "Start Menu Programs" tab.
  322.                       d) Press the "Add" button.
  323.                       e) In the "Command Line" field, type:
  324.                          "C:\xxx\ptw.exe autotn.psl"
  325.                       f) Press the "Next" button.
  326.                       g) Select the "Start Menu" folder.
  327.                       h) Shortcut name should be "Ptw".
  328.                       i) Press "Finish" button.
  329.                       j) Click on the "Start" button and select "Ptw"
  330.                          to establish your connection
  331.  
  332.  
  333. EHLLAPI support:
  334.  
  335. To use PowerTerm with MAINFRAME AND AS/400 API, one can use the Documented 
  336. EHLLAPI interface to program PowerTerm functionality.
  337.  
  338.  
  339. POWERTERM
  340. Published in the USA by
  341. ========================
  342. UniPress Software                phone: (908) 287-2100
  343. 2025 Lincoln Highway                fax:   (908) 287-4929
  344. Edison NJ 08817                    http://www.unipress.com/
  345.  
  346. commercial email:    info@unipress.com
  347. support email:        powerterm@unipress.com
  348.  
  349.  
  350. PowerTerm is a product of
  351. ========================
  352. Ericom Software, Israel
  353.  
  354.